home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Visual Basic Source Code
/
Visual Basic Source Code.iso
/
vbsource
/
getdis1r
/
frmsave.frm
(
.txt
)
< prev
next >
Wrap
Visual Basic Form
|
1999-07-26
|
2KB
|
89 lines
VERSION 5.00
Begin VB.Form frmSave
Caption = "Save As"
ClientHeight = 3348
ClientLeft = 48
ClientTop = 336
ClientWidth = 5292
LinkTopic = "Form2"
LockControls = -1 'True
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 3348
ScaleWidth = 5292
StartUpPosition = 1 'CenterOwner
Begin VB.TextBox Text1
Height = 288
Left = 240
TabIndex = 5
Top = 2400
Width = 4812
End
Begin VB.Frame Frame1
Caption = "Enter your file name below you wish to save it as."
Height = 612
Left = 120
TabIndex = 6
Top = 2160
Width = 5052
End
Begin VB.FileListBox File1
Height = 1608
Left = 2640
TabIndex = 4
Top = 480
Width = 2532
End
Begin VB.DriveListBox Drive1
Height = 288
Left = 120
TabIndex = 3
Top = 120
Width = 5052
End
Begin VB.DirListBox Dir1
Height = 1584
Left = 120
TabIndex = 2
Top = 480
Width = 2412
End
Begin VB.CommandButton Command2
Caption = "Cancel"
Height = 375
Left = 4200
TabIndex = 1
Top = 2880
Width = 972
End
Begin VB.CommandButton Command1
Caption = "Save"
Height = 375
Left = 3120
TabIndex = 0
Top = 2880
Width = 972
End
Attribute VB_Name = "frmSave"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command1_Click()
Unload Me
End Sub
Private Sub Command2_Click()
Unload Me
End Sub
Private Sub Dir1_Change()
File1.Path = Dir1.Path
Text1 = File1.Name
End Sub
Private Sub Drive1_Change()
Dir1.Path = Drive1.Drive
Text1 = Dir1.Path
End Sub
Private Sub File1_Click()
Text1 = File1.filename
End Sub